home *** CD-ROM | disk | FTP | other *** search
/ Manchester United on CD / Manchester United on CD.iso / quit.dxr / 00007_FLASH THE DAMN PRICE.ls < prev    next >
Encoding:
Text File  |  2000-08-30  |  573 b   |  23 lines

  1. property psp_mysprite, pp_displayloc, pi_nexttime
  2.  
  3. on beginSprite me
  4.   psp_mysprite = sprite(me.spriteNum)
  5.   pp_displayloc = psp_mysprite.loc
  6. end
  7.  
  8. on exitFrame me
  9.   if the timer > pi_nexttime then
  10.     if psp_mysprite.loc = pp_displayloc then
  11.       pi_nexttime = the timer + 30
  12.       psp_mysprite.loc = point(1000, 1000)
  13.     else
  14.       pi_nexttime = the timer + 60
  15.       psp_mysprite.loc = pp_displayloc
  16.     end if
  17.   end if
  18. end
  19.  
  20. on getPropertyDescriptionList me
  21.   return [#myproperty: [#comment: "comment:", #format: #float, #range: [#min: 0, #max: 180], #default: 10]]
  22. end
  23.